home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 September / DPPCPRO0999.ISO / Macromed / Flash2 / CD Extras / WebTools / JBS.DXR / 00088_ViewBtn.ls < prev    next >
Encoding:
Text File  |  1997-04-13  |  694 b   |  31 lines

  1. on mouseDown
  2.   ClickBtn()
  3. end
  4.  
  5. on GoToFileView
  6.   global MasterLevel, indexGridMode, FolderMaster, indexPage, FileNum
  7.   if the quickTimePresent then
  8.     StopPLay()
  9.     set the puppet of sprite 20 to 0
  10.     set the puppet of sprite 19 to 0
  11.     set the puppet of sprite 23 to 0
  12.     set indexGridMode to 0
  13.     if MasterLevel then
  14.       if FileNum > 0 then
  15.         set F to value(item 3 of line indexPage of FolderMaster) + FileNum - 1
  16.       else
  17.         set F to value(item 3 of line indexPage of FolderMaster)
  18.       end if
  19.       go(marker(1))
  20.     else
  21.       go(marker(0) + 1)
  22.     end if
  23.     set FileNum to 0
  24.     restoreControls()
  25.   end if
  26. end
  27.  
  28. on myHelp
  29.   return "Click to view your selection"
  30. end
  31.